home *** CD-ROM | disk | FTP | other *** search
/ Computer Select (Limited Edition) / Computer Select.iso / pcc / v04n12 / batch2.exe / JUSTYES.BAT < prev    next >
Encoding:
DOS Batch File  |  1991-10-12  |  191 b   |  11 lines

  1. @ECHO OFF
  2. REM This is JUSTYES.BAT
  3. ECHO Do you want to do this (Y/N)?
  4. KEY
  5. IF ERRORLEVEL 89 IF NOT ERRORLEVEL 90 GOTO YES
  6. ECHO You didn't say YES
  7. GOTO END
  8. :YES
  9. ECHO You said YES
  10. :END
  11.